CSS Dimensions & Overflow
Overflow: visible (default)
This is some extra text that goes beyond the box boundaries. You can see it spilling out without restriction.
Overflow: hidden
This is some extra text that will be clipped if it goes beyond the box size.
Overflow: scroll
This is some extra text that will always have scrollbars, even if the text fits. It shows scroll bars always
Overflow: auto
This is some extra text that will only show scrollbars when necessary. Resize the box or text to test. Shows scroll only it needed
Min/Max Width Example
Resize the browser window to see me grow and shrink! I respect min-width (150px) and max-width (400px).